home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
DELPHI32
/
GRAPHICS
/
GIF
/
GIF.ZIP
/
gifreg.pas
< prev
Wrap
Pascal/Delphi Source File
|
1996-04-13
|
277b
|
18 lines
unit GifReg;
interface
uses DsgnIntf, Classes, GifImg, GifEdit;
procedure Register;
implementation
procedure Register;
begin
RegisterComponents('Custom', [TGifImage]);
RegisterPropertyEditor(TypeInfo(TGif), TGifImage, 'Gif', TGifProperty);
end;
end.